crypto/tls.clientHandshakeStateTLS13.hello (field)
24 uses
crypto/tls (current package)
handshake_client.go#L332: hello: hello,
handshake_client_tls13.go#L26: hello *clientHelloMsg
handshake_client_tls13.go#L57: if hs.keyShareKeys == nil || hs.keyShareKeys.ecdhe == nil || len(hs.hello.keyShares) == 0 {
handshake_client_tls13.go#L67: if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L100: hs.hello = hs.echContext.innerHello
handshake_client_tls13.go#L110: if hs.hello.serverName == "" && hs.serverHello.serverNameAck {
handshake_client_tls13.go#L193: if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_client_tls13.go#L203: selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
handshake_client_tls13.go#L249: hello := hs.hello
handshake_client_tls13.go#L316: if slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
handshake_client_tls13.go#L373: hs.hello.keyShares = hello.keyShares
handshake_client_tls13.go#L379: if err := computeAndUpdateOuterECHExtension(hs.hello, hs.echContext.innerHello, hs.echContext, false); err != nil {
handshake_client_tls13.go#L383: hs.hello = hello
handshake_client_tls13.go#L386: if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L433: if !slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
handshake_client_tls13.go#L444: if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
handshake_client_tls13.go#L449: if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
handshake_client_tls13.go#L506: err = c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
handshake_client_tls13.go#L511: err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
handshake_client_tls13.go#L536: if err := checkALPN(hs.hello.alpnProtocols, encryptedExtensions.alpnProtocol, c.quic != nil); err != nil {
handshake_client_tls13.go#L560: if !hs.hello.earlyData && encryptedExtensions.earlyData {
handshake_client_tls13.go#L564: if hs.hello.earlyData && !encryptedExtensions.earlyData {
handshake_client_tls13.go#L718: err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
handshake_client_tls13.go#L723: err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)